Add support for `netbird` profiles feature [1] (introduced in 0.52.2). Use
`NB_STATE_DIR="/root/.config/netbird"` in the init file instead of the
previous `NB_CONFIG="/etc/netbird/config.json"`, and update Makefile
configuration paths accordingly.
Rationale: `netbird` saves state/configuration under `/var` by default. On
OpenWrt, `/var` is a symlink to `/tmp` (a volatile location), which would
cause config loss after reboot or reflash. Using `/root/.config/netbird`
avoids this, it's a valid upstream directory not used by default.
`netbird` will migrate existing configurations.
This change will not be backported to preserve the current meaning of
"stable" in OpenWrt and to avoid (unlikely but possible) breakage of
existing installations.
[1]: https://docs.netbird.io/how-to/profiles
Signed-off-by: Wesley Gimenes <[email protected]>
PKG_NAME:=netbird
PKG_VERSION:=0.55.1
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/netbirdio/netbird/tar.gz/v$(PKG_VERSION)?
endef
define Package/netbird/conffiles
-/etc/netbird/config.json
+/root/.config/netbird/
endef
define Package/netbird/install
start_service() {
procd_open_instance
procd_set_param command /usr/bin/netbird
- procd_set_param env NB_CONFIG="/etc/netbird/config.json"
+ procd_set_param env NB_STATE_DIR="/root/.config/netbird"
procd_append_param command service run
procd_set_param pidfile /var/run/netbird.pid
procd_close_instance